home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / shell / tsbgex / src / win.h
Encoding:
C/C++ Source or Header  |  1994-11-16  |  544 b   |  27 lines

  1. #ifndef TRUE
  2. #define TRUE    (1)
  3. #endif
  4. #ifndef FALSE
  5. #define FALSE    (0)
  6. #endif
  7. #ifndef NULL
  8. #define NULL    ((void *)0)
  9. #endif
  10.  
  11. typedef unsigned char u_char;
  12. typedef unsigned short u_short;
  13. typedef unsigned int u_int;
  14. typedef unsigned long u_long;
  15.  
  16. #include "../win/window.h"
  17.  
  18. #define winCreate    (*winfunc[0])
  19. #define winDestroy    (*winfunc[1])
  20. #define winMap        (*winfunc[2])
  21. #define winUnmap    (*winfunc[3])
  22. #define winUpdate    (*winfunc[4])
  23. #define winMove        (*winfunc[5])
  24. #define winLower    (*winfunc[6])
  25.  
  26. extern int (**winfunc)();
  27.